b51754e887834e69255bbf51954f680baf479df4,src/it/java/io/nats/client/ITClusterTest.java,ITClusterTest,testServersOption,#,83
Before Change
public void testServersOption() throws IOException, TimeoutException {
Options opts = new Options.Builder(defaultOptions())
.dontRandomize()
.servers(testServers)
.build();
// Make sure we can connect to first server if running
try (NatsServer ns = runServerOnPort(1222)) {
After Change
public void testServersOption() throws IOException, TimeoutException {
Options opts = new Options.Builder(defaultOptions())
.dontRandomize()
.build();
opts.servers = Nats.processUrlArray(testServers);
// Make sure we can connect to first server if running